home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: dsbase.h 37.1 (30.01.97)
- **
- ** definition of DSBase
- **
- ** (C) Copyright 1997 Markus Hillenbrand
- ** All Rights Reserved.
- */
-
- #ifndef EXAMPLE_EXAMPLEBASE_H
- #define EXAMPLE_EXAMPLEBASE_H
-
- #ifdef __MAXON__
- #ifndef EXEC_LIBRARIES_H
- #include <exec/libraries.h>
- #endif
- #else
- #ifndef EXEC_LIBRARIES
- #include <exec/libraries.h>
- #endif /* EXEC_LIBRARIES_H */
- #endif
-
- struct DSBase
- {
- struct Library dsb_LibNode;
- APTR dsb_SegList;
- struct ExecBase *dsb_SysBase;
- struct IntuitionBase *dsb_IntuitionBase;
- struct GfxBase *dsb_GfxBase;
- };
-
- #endif /* EXAMPLE_EXAMPLEBASE_H */
-
-